20467ec3acd3351717dd18050b6c251b24899575,plugins/org.eclipse.xtend.ide/xtend-gen/org/eclipse/xtend/ide/codebuilder/XtendFieldBuilder.java,XtendFieldBuilder,build,#IAppendable#,48

Before Change


  
  public IAppendable build(final IAppendable appendable) {
    JvmVisibility _visibility = this.getVisibility();
    IAppendable _appendVisibility = this.appendVisibility(appendable, _visibility, JvmVisibility.PRIVATE);
    JvmTypeReference _fieldType = this.getFieldType();
    IAppendable _appendType = this.appendType(_appendVisibility, _fieldType, "Object");
    IAppendable _append = _appendType.append(" ");
    String _fieldName = this.getFieldName();
    IAppendable _append_1 = _append.append(_fieldName);
    return _append_1;
  }
  
  public int getInsertOffset() {

After Change


    IAppendable _xblockexpression = null;
    {
      JvmVisibility _visibility = this.getVisibility();
      this.appendVisibility(appendable, _visibility, JvmVisibility.PRIVATE);
      boolean _isStaticFlag = this.isStaticFlag();
      if (_isStaticFlag) {
        appendable.append("static ");
      }
      JvmTypeReference _fieldType = this.getFieldType();
      IAppendable _appendType = this.appendType(appendable, _fieldType, "Object");
      IAppendable _append = _appendType.append(" ");
      String _fieldName = this.getFieldName();
      IAppendable _append_1 = _append.append(_fieldName);
      _xblockexpression = (_append_1);
    }
    return _xblockexpression;
  }
  
  public int getInsertOffset() {